home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / util / rexx / rkr_rexx.lzh / getenv.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1995-02-13  |  357 b   |  14 lines

  1. /*
  2. **  $Id: getenv.rexx,v 1.1 1995/02/12 22:14:01 rkr Exp $
  3. **
  4. **  Retrieve a named env. VAR (checks env: only)
  5. **
  6. **  Unlike some AmigaDOS env. operators, the file _must_ be in the env:
  7. **  dir.  I.e., you can _not_ override the directory info by putting a
  8. **  colon in the VAR name.
  9. **
  10. */
  11. parse arg var
  12.     contents = getfile( 'env:'var )
  13. return contents
  14.